<html>
<head>
<title>For Loop</title>
</head>
<body>
<script type="text/javascript">
var i=0;
for (i=0; i<=10; i++)
{
document.write("The value of i is"+i);
document.write("<br>");
}
</script>
</body>
</html>
